time.dataIO.read (method)
13 uses
time (current package)
zoneinfo_read.go#L54: func (d *dataIO) read(n int) []byte {
zoneinfo_read.go#L66: p := d.read(4)
zoneinfo_read.go#L85: p := d.read(1)
zoneinfo_read.go#L120: if magic := d.read(4); string(magic) != "TZif" {
zoneinfo_read.go#L127: if p = d.read(16); len(p) != 16 {
zoneinfo_read.go#L186: d.read(skip)
zoneinfo_read.go#L209: txtimes := dataIO{d.read(n[NTime] * size), false}
zoneinfo_read.go#L212: txzones := d.read(n[NTime])
zoneinfo_read.go#L215: zonedata := dataIO{d.read(n[NZone] * 6), false}
zoneinfo_read.go#L218: abbrev := d.read(n[NChar])
zoneinfo_read.go#L221: d.read(n[NLeap] * (size + 4))
zoneinfo_read.go#L225: isstd := d.read(n[NStdWall])
zoneinfo_read.go#L229: isutc := d.read(n[NUTCLocal])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |